home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19971216-19980424 / 000051_news@newsmaster….columbia.edu _Sun Jan 4 21:29:26 1998.msg < prev    next >
Internet Message Format  |  2020-01-01  |  8KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id VAA03457
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Sun, 4 Jan 1998 21:29:26 -0500 (EST)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id VAA12462
  7.     for kermit.misc@watsun; Sun, 4 Jan 1998 21:29:25 -0500 (EST)
  8. Path: news.columbia.edu!panix!howland.erols.net!newsfeed.internetmci.com!206.20.110.210!news.slack.net!anon.lcs.mit.edu!nym.alias.net!mail2news
  9. Date: Sun, 4 Jan 1998 18:19:44 -0700 
  10. From: dallasii@kincyb.com
  11. Message-ID: <TCPSMTP.18.1.4.-14.19.44.2375661496.4900277@kincyb.com>
  12. Subject: Re: K/2 gotchas
  13. Mail-To-News-Contact: postmaster@nym.alias.net
  14. Organization: mail2news@nym.alias.net
  15. Newsgroups: comp.protocols.kermit.misc
  16. Lines: 177
  17. Xref: news.columbia.edu comp.protocols.kermit.misc:8219
  18.  
  19. To set the record straight, when I tried my first post on this thread,
  20. post-comp.protocols.kermit.misc@newspost.zippo.com failed,
  21. and I had to use 
  22. mail2news-YYYYMMDD-comp.protocols.kermit.misc@anon.lcs.mit.edu
  23.               (YYYYMMDD = date)
  24. Possibly a change of policy with the new year at Zippo.com.
  25.  
  26. FDC>Subject: Re: K/2 Gotchas
  27. FDC>From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  28. FDC>Date: Fri, 2 Jan 1998 17:50:34 -0800
  29. FDC>Message-ID: <68k5ha$4kf$1@apakabar.cc.columbia.edu>
  30. FDC>Newsgroups: comp.protocols.kermit.misc
  31. FDC>
  32. FDC>
  33. FDC>In article <TCPSMTP.18.1.2.-16.50.0.2375661496.4897539@kincyb.com>,
  34. FDC> <dallasii@kincyb.com> wrote:
  35. FDC>: .................
  36. FDC>: 
  37. FDC>: On MS-DOS Kermit 3.14, the single back slashes were permitted even though
  38.  
  39. FDC>: the documentation clearly states that a double back slash should be used
  40. FDC>: when a back slash is desired where escaped substitution occurs.
  41. FDC>: 
  42. FDC>: .....................................
  43. FDC>But yes, all of this is well documented.  The C-Kermit manual even has a
  44. FDC>section devoted to "Taming the Wild Backslash".
  45.  
  46. Yep, page 48.
  47.  
  48. FDC>
  49. FDC>Some day we'll look back on all this and laugh.
  50. FDC>
  51.  
  52. Hey, I said some of this stuff might be trivial! :-)
  53.  
  54. FDC>: 3) When the command file got to the point where the mail package was bein
  55. g
  56. FDC>: generated, the BBS generates a stream of
  57. FDC>: 
  58. FDC>: ^H|^H/^H-^H\^H|^H/^H-^H\^H...........
  59. FDC>: 
  60. FDC>: to indicate that things are not dead while the package is prepared.
  61. FDC>: This seemed to spas out the command file when run in Kermit/2, but
  62. FDC>: not MS-DOS Kermit.  The problem was eliminated when the input buffer was
  63. FDC>: increased from the default minimum size (256 bytes) to the maximum size
  64. FDC>: (65,536 bytes).  I noticed that there was a listing in BUGS.TXT that the
  65. FDC>: "input buffer was too small".  I don't think I have anything special abou
  66. t
  67. FDC>: the input buffer for my MK 3.14, so I conclude that either
  68. FDC>: 
  69. FDC>: a) the circular buffer works with MK 3.14 and not with K/2
  70. FDC>: 
  71. FDC>That can't be true, or we'd have been pilloried by angry mobs years ago.
  72. FDC>
  73. FDC>: or
  74. FDC>: 
  75. FDC>: b) the ^H's effectively erase characters already in the input buffer
  76. FDC>:    in MK 3.14 but not with K/2
  77. FDC>: 
  78. FDC>No.  Bytes go into the buffer, no matter what they are (except NUL).
  79. FDC>
  80. FDC>What is the syntax of your INPUT command?
  81. FDC>
  82.  
  83. How about this:
  84.  
  85. ; *** File KINCYB.QWK (307954 bytes long) is now ready for download ***
  86. input 500 is now ready for download ***
  87.  
  88. FDC>: 4)  Another problem was that a script seemed to stop, then fail on
  89. FDC>: 'reinput' of a string that was obviously being recieved.  The real proble
  90. m
  91. FDC>: turned out to be in an earlier 'input' command.  The Gotcha! in this case
  92.  
  93. FDC>: was that besides going between versions of Kermit, there were two modems
  94. FDC>: involved...
  95. FDC>:
  96. FDC>Well, this kind of script programming is a lot easier now that both K95 (K/
  97. 2)
  98. FDC>and MS-DOS Kermit support the MINPUT command (INPUT looks for Many things a
  99. t
  100. FDC>once).  There is virtually no longer any need for REINPUT.
  101.  
  102. Thanks for pointing this out.
  103. Is this a real command in MS-DOS Kermit 3.15?
  104. I see where a macro MINPUT is shown in the KERMIT.BWR for 3.14 documentation 
  105. file.
  106. I think a side effect of using this could be to simplify tangle of
  107. script to deal with the occasional messages the BBS throws up to
  108. try and distract from the mission of exchanging the mail.
  109. I'll switch to MINPUT when I get 3.15 installed over 3.14, if not sooner.
  110.  
  111. FDC>................................................
  112. FDC>
  113. JA>Subject: Re: K/2 Gotchas
  114. JA>From: jaltman@watsun.cc.columbia.edu (Jeffrey Altman)
  115. JA>Date: Fri, 2 Jan 1998 18:08:35 -0800
  116. JA>Message-ID: <68k6j3$522$1@apakabar.cc.columbia.edu>
  117. JA>Newsgroups: comp.protocols.kermit.misc
  118. JA>
  119. JA>
  120. JA>In article <68k5ha$4kf$1@apakabar.cc.columbia.edu>,
  121. JA>Frank da Cruz <fdc@watsun.cc.columbia.edu> wrote:
  122. JA>: : 5)  Another problem was brought on when a dialup
  123. JA>: : script ran.  Everything went OK until I went to connect mode.
  124. JA>: : Then, as soon as anything was entered from the keyboard, K/2
  125. JA>: : left connect mode back to command mode, the session froze up,
  126. JA>: : the cursor went to lower left-hand corner and the session seemed to beco
  127. me
  128. JA>: : unkillable.  Any effort to stop the session would produce a message at t
  129. he
  130. JA>: : bottom of the screen, something to the effect of
  131. JA>: : "!!! Recieved Kill Signal!!!", but the session lived on, hogging the
  132. JA>: : COM port, still locked up until reboot.
  133. JA>: :
  134. ..................................................
  135. JA>
  136. JA>Actually, "!!! Recieved Kill Signal!!!" is one of K2's messages.  It
  137. JA>is produced when Kermit receives a KILL signal from the operating
  138. JA>system.  Kermit as this point stops all operations, closes the current
  139. JA>connection and attempts to exit.  
  140. JA>
  141. JA>.........................................
  142. JA>
  143. JA>If you can reproduce this scenario with the LOG DEBUG command active 
  144. JA>we can attempt to trace system routine in which the problem is occuring.
  145. JA>
  146.  
  147. I've never used LOG DEBUG before, but definitly have some documentation
  148. on it, and will try it, probably tomorrow, Sunday.  I seemed to get into a
  149. positive feedback loop when I encountered this problem - having to 
  150. reboot just increased the urgency to get typing as soon as logged in.
  151. When I thought to slow down, the problem quit.
  152.  
  153. Trying to think of anything else that might be important on this,
  154. the only other things I can think of are that I'm using an old style
  155. 83 key (or what ever - less than 90) keyboard (it never previously 
  156. caused any problem that I'm aware of), and the USR modem acts a little
  157. flakey when we get what passes for winter weather out here.  I
  158. really don't know if this last point is the modem or something with 
  159. the phone lines when they get cold or damp.  (I'll try it with the Zoom 
  160. internal as well to check on that.  The (slower) Zoom never seems to be
  161. bothered by the weather.)
  162.  
  163. JA>
  164. JA>    Jeffrey Altman * Sr.Software Designer * Kermit-95 for Win32 and OS/2
  165. JA>                 The Kermit Project * Columbia University
  166. JA>       612 West 115th St #716 * New York, NY * 10025 * (212) 854-1344
  167. JA>    http://www.columbia.edu/kermit/k95.html * kermit-support@columbia.edu   
  168.  
  169. JA>
  170. JA>--------------------------------
  171.  
  172.  
  173. Thanks & Best regards,
  174. Dallas E. Legan II
  175. (562) 862 - 4854 ext. '*'
  176. legan@acm.org
  177. legan@forth.org
  178. aw585@lafn.org
  179. dallasii@kincyb.com
  180.  
  181. "But I found that the rulers were ordinary men, too, and frequently
  182. as bewildered as I was."
  183.  
  184.                 from "Solution Unsatisfactory"
  185.                    by Robert A. Heinlein
  186.  
  187. I speak only for myself, and assume full responsibility for my statements.
  188.  
  189.